17. Should We Implement It

Should We Implement It

Here's the Algorithm Pseudocode we just came up with:

days = # of days in month1 - day1
month1 += 1
while month1 < month2:
    days += # of days in month1
    month1 += 1
days += day2
while year1 < year2:
    days += days in year1

Should we implement this algorithm?